Skip to main content

News SDK Installation

To utilize News SDK feature include the appropriate dependency (or dependencies) listed below in your gradle/libs.version file. It's highly recommended to use Bill Of Materials definition to ensure all Crypto libraries are compatible.

    kotoxCryptoBom = "2025.11.04" //This is the sample, use the latest version

kotox-crypto-bom = {module = "cz.kotox.crypto.sdk:bom", version.ref = "kotoxCryptoBom"}
kotox-crypto-news = {module = "cz.kotox.crypto.sdk:crypto-news"}

crypto-news introduces tracker module features. It also brings transitive dependency crypto-common which adds additional mechanism to work comfortably with any crypto module.

Then in your build.gradle.kts file define appropriate dependency (or dependencies)

    implementation(platform(libs.kotox.crypto.bom))
implementation(libs.kotox.crypto.news)